Specify --prefix
for npm install
command for typescript
and typescript-language-server
#62
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In certain setups,
multilspy
might be installed at a location where a parent directory has anode_modules
folder already. For example, in a docker container,multilspy
will most likely just be under/usr/local/lib/python
and if there is anynpm
installed global dependencies, there will also be a/usr/local/lib/node_modules
folder.In such a setup,
npm install typescript
will put the executable under/usr/local/lib/node_modules
whensetup_runtime_dependencies
is run fortypescript
repos. This will cause the assert for checkingtypescript-language-server
being located undermultilspy/language_servers/typescript_language_server/static/ts-lsp
to fail right after the installation.We can fix this issue by adding
--prefix ./
to thenpm install
command in the settings file. This PR implements that fix.